home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_2 / yas < prev    next >
Internet Message Format  |  1995-03-31  |  35KB

  1. From: Detlef Mueller <detlef@mwhh.hanse.de>
  2. Subject:  v02i038:  yas - Sokoban V1.3, Part01/01
  3. Newsgroups: comp.sources.hp48
  4. Followup-To: comp.sys.hp48
  5. Approved: spell@seq.uncwil.edu
  6.  
  7. Checksum: 2451518906 (verify with brik -cv)
  8. Submitted-by: Detlef Mueller <detlef@mwhh.hanse.de>
  9. Posting-number: Volume 2, Issue 38
  10. Archive-name: yas/part01
  11.  
  12. BEGIN_DOC garbage.doc
  13. Hi, world.
  14.  
  15. YAS - yet another SOKOBAN for the HP48: GARBAGE - update to version 1.3
  16. This should be the last update for the next time B-).
  17.  
  18. The aim of the game is to solve puzzles of increasing complexity.
  19.  
  20. Features:
  21.     - implemented as library (no. 1111, 7602 bytes, checksum #F5FB)
  22.     - includes *50* levels
  23.     - high speed
  24.     - key repeat (to prevent key damage :-)
  25.     - undo last step
  26.     - save/restore capability
  27.     - select a level
  28.     - go to next/prev level
  29.  
  30. Changes vs. version 1.2:
  31.     - add level select
  32.     - the context data is stored in normal user RAM
  33.     - remove PGDT
  34.     - document go to next/prev level
  35.     - fix level 16 and 36
  36.  
  37. Installation:
  38.     To install the game, a) download the ASC version, execute ASC\->,
  39.     b) download the uudecoded version and recall it into the stack.
  40.     Enter the port number (0,1,2) where you want to store it and press
  41.     STO. Switch the HP48 off, then on again. GARBAGE will now be
  42.     installed as a library named GARBAGE (id no. 1111).
  43.  
  44. Deinstallation:
  45.     To get rid of the game execute the following commands (if GARBAGE
  46.     is stored in port 1 or 2, make sure the port is set to R/W):
  47.         HOME        @ switch to the home directory
  48.         1111 DETACH        @ release GARBAGE library
  49.         :&:1111 PURGE    @ search and purge GARBAGE
  50.  
  51. How to update:
  52.     To update an older version of GARBAGE proceed as follows:
  53.         - deinstall the old GARBAGE version
  54.         - install this version
  55.         - generate an executable form of CNVTGD (included in this
  56.           posting), download, execute and purge it.
  57.     For a description of CNVTGD see 'Things to notice'
  58.  
  59. Run:
  60.     To play it, enter the LIBRARY GARBAGE menu and press the softkey
  61.     named GARB or just type GARB[ENTER] at the command line. The game
  62.     starts immediately, coming up with the following screen:
  63.  
  64.     +---------------------------------+
  65.     | ##################   GARBAGE    |
  66.     | #                #  *********   |
  67.     | #                #  *       *   |
  68.     | #                #  *  x    *   |
  69.     | #                #  *       *   |
  70.     | #                #  *********   |
  71.     | ##################   VERSION    |
  72.     +---------------------------------+
  73.  
  74.     Symbol    Means
  75.  
  76.     *****    A little logo with the actual level number displayed in
  77.     * x *    the center of it (x).
  78.     *****
  79.  
  80.     #####    The game area (see below).
  81.     #   #
  82.     #####
  83.  
  84. Keys:
  85.     Key        Action
  86.  
  87.     Left arrow    Move actor one step left. Repeats if held down.
  88.     Right arrow    Move actor one step right. Repeats if held down.
  89.     Up arrow    Move actor one step up. Repeats if held down.
  90.     Down arrow    Move actor one step down. Repeats if held down.
  91.     +/-        Toggle sound on/off
  92.     STO        Make a snapshot of the game
  93.     <-        Restore game from last snapshot
  94.     DEL        Set actual level to initial state (don't affect
  95.             saved game)
  96.     ENTER        Undo last step
  97.     Blueshift ON    Turn calculator off without leaving GARBAGE
  98.     Blueshift +    Go to next level
  99.     Blueshift -    Go to prev. level
  100.     ON        Leave GARBAGE (Boss key .. :-)
  101.  
  102. Description (by Gilles Kohl):
  103.     In GARBAGE, you're in charge of garbage collection inside your HP48.
  104.     The 'garbage collector' is shown by a cross-shaped symbol. Your task
  105.     is to collect lost objects and move them onto free storage locations.
  106.  
  107.     The characters in GARBAGE are: (all shapes 4x4 size, '.' = off,
  108.     '#' = on)
  109.  
  110.     .#..
  111.     ###.  your 'collector' or mover.
  112.     .#..  Control using [left], [right], [up] and [down] arrows
  113.     ....  (appears a little differently on storage locations, see below)
  114.  
  115.     ###.
  116.     #.#.  a moveable object. Push them to their storage locations.
  117.     ###.  you may only push objects (no pulling them) and only one
  118.     ....  object at a time.
  119.  
  120.     ....
  121.     .#..  an empty storage location. Push moveable objects upon them.
  122.     ....
  123.     ....
  124.  
  125.     ###.
  126.     ###.  successfully filled-up storage location.
  127.     ###.  (you may still move the object away again, if necessary)
  128.     ....
  129.  
  130.     #.#.
  131.     .#.#  an unmoveable object. No way to move it - just stands in
  132.     #.#.  your way.
  133.     .#.#
  134.  
  135.     .#..
  136.     #.#.  the 'mover' above an empty storage location.
  137.     .#..  (there is no special meaning to this, except to indicate
  138.     ....   that you're above a storage location)
  139.  
  140.     The aim of the game is filling up all storage locations by moving
  141.     all (moveable) objects to them. This successfully completes a
  142.     garbage collection task, and you're promptly assigned the next one.
  143.     (Unless you've solved them all).
  144.  
  145. Things to notice:
  146.     - On entering a new level (or when you make a snapshot with STO)
  147.       the game stores information about the context into a variable
  148.       named 'gc.data' (670 bytes in size). If this variable already
  149.       exists in the path, it will be overwritten. Otherwise GARBAGE
  150.       generates this variable in the actual directory. The game will
  151.       always come up with this data (if it is found), so you can inter-
  152.       rupt your task at every point by pressing STO, then leaving with ON.
  153.     - It is also possible to select a level. Just store a real number
  154.       in the range 1 - 50 into 'gc.data' and GARBAGE will come up with
  155.       the associated level.
  156.     - If the data stored in 'gc.data' is invalid, the game starts at
  157.       level 1.
  158.     - CNVTGD (CoNVerT Garbage Data) is a program to convert older
  159.       context data (stored in the hidden directory) to the new form.
  160.       It looks into the hidden directory for an old dataset, converts
  161.       and stores it into a variable named 'gc.data' in the actual
  162.       directory, then removes the old data from the hidden directory.
  163.       The checksum/size is #EFF9h/125.5 . After running this you can
  164.       ditch it away :-).
  165.     - The sound toggle (+/-) modifies flag -56 permanently.
  166.     - GARBAGE doesn't destroy your PICT.
  167.     - If you get a 'Collection Failed' from the game, please mail me
  168.       a description of the circumstances and the contents of the stack.
  169.       GARBAGE traps any error, prints an error message and DOESN'T clean
  170.       up the stack. Use the interactive stack to view the stack, then
  171.       execute CLEAR !
  172.     - I will maintain this program, so feel free to mail me ideas for
  173.       improvements or notes of appreciation :-).
  174.  
  175. Hints:
  176.     Save early, save often .. ;-)
  177.     You can hold one context variable in every subdirectory, so more
  178.     than one person can be playing the game at once.
  179.  
  180. Credits:
  181.     1)  Gilles Kohl - posted MOVE in Dec 90 (freeware)
  182.         I used the algorithms, pictures and parts of the documentation.
  183.     2)  Douglas R. Cannon - SKUNK 1.0 (freeware, great animations)
  184.         I used his 'FANFARE' data
  185.     3)  Yvonne - alpha tester
  186.     4)  Raymond Hellstern - beta tester
  187.     5)  Chris Spell - inserted the UUENCODE form of GARBAGE (thanks :-)
  188.     6)  Markus Witt - reviewed this text
  189.     7)  W. C. Wickes - \->ASC
  190.     8)  HP Corvallis - RPL tools/HP48
  191.     9)  Lutz Vieweg - asks for an undo feature
  192.     10) Robert Brunner - suggestions
  193.     11) Dan Ciarniello - reports the bug in level 36, suggestions
  194.  
  195. Happy playing,
  196.     8-), Detlef.
  197.  
  198. P.S.    I don't take the blame for worn calculator keys :-).
  199.     All songs of praise about the game design to: gilles@disys.dis.incom.de
  200.  
  201. P.P.S.    Any questions ? Feel free to mail me =-) ...
  202.  
  203. END_DOC
  204.  
  205. BEGIN_ASC cnvtgd.asc
  206. %%HP: ;
  207. "D9D2051A8179E6084E20703726E2461647168813032046DA916D9D2044230C2A
  208. 2032000E4F60274142524147454024616471684051B213088B261192075400AF
  209. 016B2040954508813020950CCD20630008F146608FB97601471353488B201451
  210. 74818F841418D3415079E6084E20707636E24616471620A26C8046B21309FFE"
  211. END_ASC
  212.  
  213.  
  214. BEGIN_ASC garbage.asc
  215. %%HP: ;
  216. "04B20F5B302174142524147454A313E233C29A44D47293132175474A3000000E
  217. AA3050000D9D201192075400F6C12B21308754000D9D20E1A8113593CA031FC2
  218. E4E5E40D9D20FEF3053040073E579E6003D4332230073E54E47029E20754F002
  219. 9E2075490029E207541007947086050B21308BE40D9D20743E4CA0316EC4078D
  220. 40C2A207200034F6C6C656364796F6E602641696C65646B5421B6421C2093B21
  221. 3017D00743E4CA031B2130D9D202A17024F5056F14D9D209FF303D816D9D2047
  222. A20D5040F8040990403A040B704011140701409E0403F040C1B46B21302C230A
  223. 844647A2029E2075430029E2075440029E2075450029E2075460029E20754800
  224. 29E2075490029E20754C0029E20754200D9D20A8B4688130487358DA16167351
  225. 3735B2130D9D2082E4600616B2130B21302C2306B6504891688130E8F6032230
  226. 7104038D30079162A1709F1167C740EE170D9D20E8F60B21305E170B4F06E041
  227. 66AC30CB91629E20754010B2130D00403D816D9D2044B463D816D9D2083416FE
  228. D30E4B463D81629E2075401029E20754110B213021B463D816D9D2083416DBC3
  229. 6E0E3029E20754110B2130C1B4691D30CB9167A140B213085230B2130E041682
  230. E4691D308C170B2130D9D20C7416DBC36FEF3054616E0416C64160ED3000616C
  231. 5416536216B3167E3168DF06D9D209FF303D816D9D202C230A06260E516B2130
  232. 300403D816D9D202C230A75260E51632230A062632230B2130D00403D816D9D2
  233. 088130A75260F516A0626B21304423088130A06260F516B21309761129E20754
  234. E00B2130D9D208E920A50001192010000E00002CA50BDC7097D60EBA2050D10A
  235. 7FE0369C01C8D060F90DB8A06597055BF0DEE40EECC0536216B3167E316F3040
  236. 0ED306B316A75267E316F29118813044950B9F0630A507EE0629E20754210662
  237. 26079163223052616FEF3053616D0040546167E316A06260F5160CA3053621EF
  238. 116D50404EC3039916D9D20E1B20F1000800004000020702000207020006B316
  239. 7E316C87F4852303004011920091002B141B2130E1B2072000C0000400007050
  240. 700050205000207020006B3167E316A062629E20754700B2130D9D208E920A50
  241. 001192010000E000078420848E0F319031700BA2B0CB72037BE0402908240009
  242. 1B05ED0066BB0D58B0EDE00536216B316F30400ED307E3166B3167E316A7526F
  243. 29118813044950B9F0630A507EE0629E2075421066226079163223052616FEF3
  244. 05361630040546166B316A06260E5160CA3053621EF116D50404EC3039916D9D
  245. 20E1B20710004000080000227722006B3167E316C87F48523030040119200910
  246. 02B141B2130E1B20F100040000C000075205270752000006B316A06267E31629
  247. E20754700B2130D9D208E920A50001192010000E00002CA50D0690A7FE065970
  248. EECC097D606B1A01C8D0DEE4055BF0EBA20DB8A060F9050D10536216B3167E31
  249. 6A75266B316A75267E31676040CBD30F29118813044950B9F0630A507EE0629E
  250. 2075421066226079163223052616FEF305361671040546167E316A75260F5160
  251. CA3053621EF116D50404EC3039916D9D20E1B20F100080000400002070200020
  252. 7020006B3167E316A0626C87F4852303004011920091002B141B2130E1B20720
  253. 00C0000400002070200050205000705070006B3167E316A062629E20754700B2
  254. 130D9D208E920A50001192010000E000078420BB880CB7205ED00EDE00F31903
  255. 0D3040290D58B066BB031700091B082400BA2B0536216B316A75267E3166B316
  256. 76040CBD307E316A7526F29118813044950B9F0630A507EE0629E20754210662
  257. 26079163223052616FEF30536169FF30546166B316A75260E5160CA3053621EF
  258. 116D50404EC3039916D9D20E1B20710004000080000227722006B316A06267E3
  259. 16C87F4852303004011920091002B141B2130E1B20F100040000C00002570725
  260. 0257000006B316A06267E31629E20754700B2130D9D20C87F444230300401192
  261. 0091002B141170403D816D9D20E0416E0E300061611920FFFFF53616B2130B70
  262. 40E4D30B3A16E0416FED30006169FF3053616B2130D9D2011920754006B3167E
  263. 316E04168341653621CF14611920C4000ADB46F2911B2040954508813020950C
  264. CD20630008F146608FB97601471353488B20145174818F841418D3415079E608
  265. 4E20707636E24616471620A26B2130D9D2079E6084E20707636E24616471643A
  266. 26DA916D9D2029E20754C0029E20754800B2130D9F8111920FA000D9D2075660
  267. CCD20030008FB97601431313447A2014517434119201458D3415088130980501
  268. 192075400E4D307F81629E20754A0088B26CF146592300B82151616006160F51
  269. 60E51644230FEF3054616D9D2083416FED304E76108F11536211192076000751
  270. 4097611B2130B21309FF30D9D2011CE2E0E30E4B46CD6363991629E207541104
  271. 423029E20754A00B2130FEF30D9D204423029E20754A00B2130B2130D9D2029E
  272. 20754B0029E207544108341611920C40002CE309082611920B4000CBD3033750
  273. CF1460E5160F516D9D2053621CF14611920C4000ADB46E9836B213024F502A17
  274. 0881307E316DA0402CE306B316CBD3075660CCD2032000147137174143F41411
  275. 35142164808CFED3050803710403C37088130D00401BE305CE3644230D9D2047
  276. A20E1B2071000400004000050A050A0E1B2071000400004000070507000E1B20
  277. 71000400004000000200000B213032230C9B26536216B3167E31697611B2130E
  278. 8E30E8E306B316A752688130119208400038D30CB916D9D20535267E316A7526
  279. 0F516B21300E51643370442307E3162BB4638D308C1704423029E20754310834
  280. 16D00402CE3090826D2E301285088B260F5160E51600616FEF3054616D9D200C
  281. A3053621E1B20710004000040000207020006B3167E316C87F444230B2130B21
  282. 30D9D205362111920350009FF3001D467B040E98361192065000A8B4601D462C
  283. 23080B05119206500049B46C2A20B10006554253594F4E40213E23308F111192
  284. 0350007B040E1B20FB10042000F2000FFFFFFFFFFF7555555555555BAAAAAAAA
  285. AA655FFFFFF7555BA100000EAA655100000A555BA1000002BA6551000002655B
  286. A1EFFF12CA6551600A12455BA1A00512CA6551218A12455BA1220512CA65512C
  287. FF12455BA1240012CA6551240012455BA1240012CA6551240012455BA1240012
  288. CA6551240012455BA1240012CA6551240012455BA1240012CA65512CFF12455B
  289. A1245122CA65512CA042455BA1245082CA65512C0003455BA12CFFF3CA655320
  290. 0000455BA6200000CA655D200000455BAA300000CA6555FFFFFF755BAAAAAAAA
  291. AA6FFFFFFFFFFF71192055000B2040C2A20310007414252414745400D110B821
  292. 0B8210B82111920350009FF3001D462C2302C230300402C23099040119203500
  293. 02C23011920F70002C2301192035000300401192035000F804011920450003A0
  294. 4011920180003A0402C230300402C23099040B20403C37071B0543370B2130D9
  295. D20E1B2053200730006200000F10000000802000000040200000004040000003
  296. 604F83EC34504154150C7041541402C06FC71C328C91FF95018081103501010F
  297. 01ED3101868003028174880402820484080244048508070C1E0708270AF7BF04
  298. 3801BA60FF0F1050C66015301080102A28088A00257408EF102A930870281515
  299. 0C30041A1B0A300A2515E520061A1100600E25110080051A1210000D25120000
  300. 841A1210008C25140000441A1600002C251A0008341A12100F2C251270C3241A
  301. 1220022C25124002241A1240832C25124082241A1240022C25124002241A1240
  302. 022C25124004241A12800C2C2512C004341A12C00C3C25328004041A6280040C
  303. 25D28004041AA380080C255FF008F71AAAA100BA2FFFF108FF30000FF7000536
  304. 211192075000300409761111920C210011920A220011920C2100119203920011
  305. 920B4000119204E200119206900011920A220011920B40001192039200119206
  306. 90001192039200B20403C3702B1414337021F0483416FED30E4B463D816D9D20
  307. 82E460061629E20754D009FF305D040C2A20D100095F65702469646029647021
  308. 200D110B8219FF3052140C2A2091000249756C20226975602F100D110B821FEF
  309. 302A170FED3047A20E1B2032000A00006000000C3C18381818181C181E1B2032
  310. 000A00007000082C1C18381C1C585C2C0E1B2032000A0000700000041C18183C
  311. 1C1E3C366E1B2032000A0000600000081C3C38181C181E323E1B2032000A0000
  312. 6000000C3C1C381818181C181E1B2032000A00007000082C1C18381818585C2C
  313. 0E1B2032000A0000700000041C18183818183C366E1B2032000A000060000008
  314. 1C3C381818181E323B21302C230530401BE30FED30C9B2653621EF11667B4697
  315. 61188130D00401BE30A9226CB916D9D20D004011920091002B141B21304B4949
  316. C7A126224CB916D9D204423002C46B213002C46BE0268C17044230B213029E20
  317. 754F00D9D205161629E20754A00B2130B2130CCD20B50008F14660174E78FB97
  318. 601C4147134135164146D5137C913516E146D8DA6E001478A1A01C4CC52FE48D
  319. C753047A20B204021B4621B4635040F7140F2140D50402BB467B0407B040F714
  320. 0A3B46760402BB46751403504026B46F8040D5040751407B0403A04076040FD0
  321. 40B7040F304021B46F2140F304071040B704070140F804058040F2140FD040F8
  322. 040FD0407B0403A04021B46F304017040701407B040B70407B0407B040B2040F
  323. 804021B46D504026B467604058040FD04071040DA040A8B46F304017040FD040
  324. F8040DF040F7140F80403A04076040F2140BC04076040A8B46DA040ADB46FD04
  325. 017040ADB46A3B467B040F7140A3B467B040F30401192002000D504021B467B0
  326. 403A0407B040FD0407B040751407604058040F80407B0405804026B4621B46B7
  327. 04026B46F804099040F7140F30401C040F7140701407B0407514026B46F3040A
  328. 3B46760409E04021B4676040F8040ADB46760405804020C46F2140FD04020C46
  329. 760409404075140F71409404075140F80409904070140F7140B7040A8B467014
  330. 0F8040F214070140F80407514026B46D504075140A3B4617040F304070140B21
  331. 30C2A205BD100000000000000000000000000000004550000000101000000424
  332. 00000051850000040221000051154045550441551C712800000F55545441C700
  333. 1005555104555000000000000000000000000000000000000000000000000000
  334. 000000000004555551000D340045004F01280100D346514004F00050100D3440
  335. 2500455152210001288840004001001000555555000000000000000000000000
  336. 0000000000000000000000000000000000000045551000001004000004894100
  337. 0001281000004984005555121514FF05802405F30802014FF055555055550000
  338. 0000000000000000000000000000000000055550000040FF5555551CF7104022
  339. 0FF58A9021CF71800840FF582988555518400400041555510001040050004008
  340. 041000186A040004001041000555551000000000000000000000000000000000
  341. 00045500000001055100004461400000100214555545040DF34128514FF002A4
  342. 10DF349024045555024100000122400000454110000001040000004551000000
  343. 00000000000000000000000000000000004551450000D344150004F05101000D
  344. 300A40004F01121000D754840004512901000040684000001280100004050400
  345. 0005555100000000000000000000000000000000000000000000000000000055
  346. 100045550410041141A4000108000100402450400051559510048051F1000122
  347. 2F70004005DF10001A44F7000405155100055000000000000000005500000004
  348. 0555551001080884004812180100188010404581145110198805040400291011
  349. 0102088840055055551001004000004000100000DFF7000004FFF100000DFF70
  350. 00004555100000000000000000055510000040F70000551CF100040003700001
  351. 41CF10004150F700045455510001A25000455022551410980404018020802145
  352. 51A84550004000100000555500000000000045055555551550004041A08288CF
  353. 50A60024F71201A82DF55040204F71001222DF50055545F75401880DF5054822
  354. 6D71F118000D5C748A8A4755110001D104455554700100000D10455555550000
  355. 00000000004510000451140000514521000500024000502A5410040950040001
  356. 12A44500408401255551040A4045541200005304505555D3F1550004F7700000
  357. 0DFF100000455500000000000000000000000004555555510100000040444551
  358. 00101188881404408804150119885DF14408805F70159A84DF14004415F70551
  359. 054DF10045500450000010010000045550000000000000000000000555510000
  360. 5041455045004010451842140F35481611DD41442400335800211DD410505223
  361. 35840409DD45802028F319455104144010455551550000000000000000000000
  362. 0000000055510045550040001001221004A4045555015DFF7101408FFF544015
  363. DFF30015045151954090402440188A01611408845A4405510020110045450440
  364. 0001001010004555140000000451004555000004040100000180400004542055
  365. 0001805201004010216000140002550415561001016CF7404040EFF8151414FF
  366. 4040010515551048240100001400400004551010000004550000055100000040
  367. 4100000010405500048055010001822060004509005000405022500012415C10
  368. 04095247000510E7D10001043F7000482DFF1000145555000401000000055000
  369. 0000000000000000000000005555500004F01010000D300400004F0145100455
  370. 5014100100000400401414010554145150402455401011280124040280404105
  371. 5415551000104000000455100000000000000000000000005555510004034040
  372. 0001D000104554D7451414C75004512DF08402500F4141545569121011411042
  373. A440184401611400000004014555550145100005500000000000000000000555
  374. 0000004005500005512010004041045100121410400484055110058020440041
  375. 2251110054024440041191011005450444555024511DF71080020FD5590680CF
  376. 71000141FF555555555500555550045500005501001024014455565145110411
  377. 423548024014711240042F540515004715140142F540016514719080243F5002
  378. 12294755851043F1010825DF7040005455105555000005555100004000400000
  379. 100055000415540100054410400048A80A10001441240004015025500550A260
  380. 1001050CF70044044FC10010115F70045580DF10000504550000055100000000
  381. 0000551004510400555145510601801050280212245220148005025555515110
  382. DFFF164414CFF701110EFFFB44484FFC70118855651648045808051200228005
  383. 1555845541000010005555555555000000000004555000000140550045589405
  384. 00D314010104F48940651D010090144F08148001D314290144F48100601D314A
  385. 90145F48140624D314010105D4514550445145105510000000005555555104FF
  386. FFF0751DFFFFBE14455555210510080200251550402141004041445060150515
  387. 1295104545502140515510841144112402880440289A01011402004554050140
  388. 1005555555005500000004055555550140C7FFF14011551F705600FFFF140495
  389. 550551210055505948045514184A6100050001046651554AA204440020010111
  390. 0541005545595558410004001055555104550000000000000000000000000000
  391. 0045550000001405510005014F75004060DF01001292F34004060DFC10010165
  392. 55104900088400501821010055505A4000001004100004555100000000000000
  393. 0000005555555514F30104045DFF061194DFF7024005FFF14011455551288014
  394. 0046949541020480011415114944882002801120852555455500500000055500
  395. 00000000000000000000000005510000455040000412805505512884D1400082
  396. 4D70145515D31411400DF40120104F314094155F705502A05F10050228F70001
  397. A021C10040880550005550400000005510000000000000000000045500000001
  398. 05000000480555510054400045551106604041400021025051555515141F33F4
  399. 4515C33331516555515250202800241404040405555555555000000000000000
  400. 0000000000000000055555100040400445501002211055161154841015801120
  401. A449A441510150015404545564110024FF1145412DF75808404FE4141214DF35
  402. 550455DF50055104550000000000045100000001455550005050101004068804
  403. 5109024881415061980044014408A011208061554884601400505145210014FF
  404. 0040045DFF751000DF75100004F71000000DF100000045500000000000000000
  405. 005500000455010000410060000412415100012212400045150810004FF98400
  406. 00DF70810004FF0A41000DF48040004559801000004045000000945000000401
  407. 0000000550000000000000055555500041005010005080840004515821000102
  408. 10400048A4451000101125000401402100016810400040C745100055F8440004
  409. FF78110005FF18400045F500100055555500000000000004555500000DF30500
  410. 004770250004DF74050001FF1405004004252100545020400090226010044022
  411. 5400014505010040054150001840240004522051000014550000045100005555
  412. 554555040015DF710A100CFF5044504CF75415140FF112200115540261400055
  413. 11451154144205400580244110511220440440254115511A0082400415458010
  414. 0400110400055545510000000055145505550401055022214804154141102200
  415. 284458054100501551559215655050044805951241124045051482210A400100
  416. 1050104555FC510004FFFF70000DFFFF1000455555005555510004FFF045555D
  417. FF3014105F51208004DF88405105F76550014510404242140A88061401804625
  418. 2145411041404022545510108024000410110100045545500000051000000000
  419. 0000000000000000000000000000550000455501000010024000040858100005
  420. 6F74000001EF0100004437410000101940000428001000014555000045100000
  421. 00000000000000000000000000000000004551555555DF75041005FF50A5024D
  422. F71008260FF50258211F71841240FF51551515755080250C0585144554510201
  423. 000140298851401A680445140018210005550450000005510000004555551000
  424. 1000041004019224000946050100541121500408424400010120110041220540
  425. 00140502100400586404559201010DF705555047F3500000DF30100004FF0400
  426. 0005555100000000045500000041050000041001000041824000041A02100001
  427. 208405504082555055554104D000000A25745554105D1555D4265FFFFF310455
  428. 5555502100000050500000005500000000000000000000004555100045100455
  429. 1010412204044156226151FFF182540CFF7010111FFF902444CFF3A121185159
  430. 0254508802840018028021045510555000045500000000000000000000000000
  431. 0000000000000000000000000000455500005514055004040800145192541441
  432. 004405451458902805F30441404DF10044545F70518024555541010100004555
  433. 5000000000000000000000000000005510000004040000000115551000400025
  434. 550012525101044512084001551142555055490005060244154100001DF15551
  435. 450F34004511DF11000044544000001000100004555500000000004554510000
  436. DF11451004F75024000DF71285104DF71024005DF41221044104024001411515
  437. 5048442800101808002404048822510145514500441045100051000000000000
  438. 00000455551000010004510044551141001122284004000420100590A1450004
  439. 0548500005608010000188450000440801000015044000050551100040000400
  440. 00DFFF510004FFF7000005555100000000000000000000000000550004555505
  441. 0041800025511054105F744A8866DF11100010F740645A0CF1128284DF745200
  442. 0555101455500004510000000000000000000000000000000000004555500000
  443. 1313100004333700000133310000433370000013331000045045000000101000
  444. 0455155500010000010048888840005888841000988881000408804000014550
  445. 1000451055000000000000000055000000040500000001050000004825000005
  446. 90250005500201045015514001044FF2104408CF74001844FC11045055454000
  447. 5502495000051200100004050400000555510005555550005F00101005F32084
  448. 005FC1194104CC1112445DF140011141100004402251444112020110145A0444
  449. 440010201155148155100409040404014051050040140001041451004551E4A2
  450. 0C60000000000000000006400000000000000000000000000000000000000000
  451. 0000000000000000000000210004074142524000D0000E4A20E6000275CFA56C
  452. F198CF289CF82BCFEBCCFE6ECFE00DFB80DFA31DFE51DF722DF5C2DF713DFCF4
  453. DF045DF778DFAFDDF41EDFF6EDF761EFF550BF5F"
  454. END_ASC
  455.  
  456.  
  457. BYTES: #EFF9h 136
  458.  
  459. BEGIN_UU cnvtgd.uue
  460. begin 644 cnvtgd
  461. M2%!(4#0X+46=+5"A&)=N@.0"!W-B+F1A=&&(,3`"9*T9UMD"1#+`H@(C`.#T9
  462. M!G(4)"44=%0$0A9&%X8$%2LQ@+AB$2EP10#Z$+8"!%E4@!@#`EG`W`(V`(`?5
  463. L9`;XFV<0=#$UA+@"015'&/A(08$]%`67;H#D`@=G8RYD871A`BK&"&0K,0`KD
  464. ``
  465. end
  466. END_UU
  467.  
  468.  
  469. BYTES: #F5FBh 7613.5
  470.  
  471. BEGIN_UU garbage.uue
  472. begin 644 garbage
  473. M2%!(4#0X+45`*_"U`Q)'05)"04=%.C$N,RRI1$TG.3$25W2D`P``X*H#!0#00
  474. MV0(1*7!%`&\<LA(#>$4`T-D"'HH14SFL,/$L3EY.T-D"[S]0`P1PXW7I!C!-8
  475. M,R(#<.-%3@>2+G!%#R#I`E>4`)(N<$4!<$D':%"P$@.X3M#9`D?CQ`H3YDQP^
  476. MV`0L*G`"`$-O;&QE8W1I;VX@1F%I;&5D6R2Q1A(LD+,2`W$-<#1.K#"Q$@.=!
  477. M+2`:!T)?4/9!G2V0_P/3&-;9`G0JT`4$CT"0"02C0+`'!!%!<!`$Z4`P#P0<M
  478. M2[82`\(RH$AD="H@Z0)7-`"2+G!%!"#I`E=4`)(N<$4&(.D"5X0`DBYP10D@S
  479. MZ0)7Q`"2+G!%`M#9`HI+AA@#A#>%K6%A-Q5S4RLQT-D"*$X&8&$K,;`2`\(RW
  480. M8&L%A!F&&`..;S`B`Q=`,-@#<!DF&@?Y$79\!.YQT-D"CF^P$@/E<;#T8`X4/
  481. M9LH#O!DFZ0)7!`$K,=``!-,8UMD"1$LVC6&=+8!#8>\]X+1DTQ@FZ0)7!`&2V
  482. M+G!%$;`2`Q)+-HUAG2V`0V&]/.;@`Y(N<$41L!(#'$N6T0.\&78:!"LQ@"4#Z
  483. M*S'@0&$H3I;1`\AQL!(#G2W`1V&]//;^`T46YD!A;!0&W@,`%L9%834F83MAD
  484. MYQ.&_6"=+9#_`],8UMD"PC*@8&+@%;82`P-`,(UAG2T@+`-Z)09>82,RH&!B@
  485. M(S*P$@,-0#"-89TM@!@#>B4&7V$*)K82`T0R@!@#"B8&7V$K,9!G$9(N<$4.7
  486. ML!(#G2V`G@):`!"1`@$`X```PEJPS0=Y;>"K`@4=H/<.8\D0C`T&G]"+"E9YP
  487. M4+4/[4[@S@PU)F$[8><3]@,$X#U@.V%Z)78^82\9@1@#1%FP^6`#6G#N8)(N(
  488. M<$428"9B<!DV(@,E%O;^`S46U@`$119V/F$*)@9?8<`Z4&,2_A'6!03D/#"9;
  489. M89TMX+$"'P"````$`"!P(``@<"``8#MAYQ/&>$]8,C``!!$I`!D`LD&Q$@,>(
  490. M*W`"``P`0```!P4'``4"!0`"!P(`MA-V/F$*)B;I`E=T`"LQT-D"Z"F@!0`14
  491. M*1````X`<$@"2.CP$PD3![`J"[PG,+<.!)*`0@"0L5#>`&:[T(4+W@Y08Q*V%
  492. M$_8#!.`]<#YAMA-V/F%Z)?:2$8@Q0)0%FP\VH`7G#B;I`E<D`68B!I=A(S)0?
  493. M8F'O/U!C80-`4&1AMA.F8&+@%0:L`S4FX1]A74!`S@.3&=;9`AXK<`$`!`"`U
  494. M```B=R(`MA-V/F&,]X0E`P-`$)$"D`$@&Q0K,>"Q`A\`0```#`!P)5!R<"4`&
  495. M`&`[80HF=CYADBYP10>P$@.=+8">`EH`$)$"`0#@``#"6M!@"7KO8)4'[LR05
  496. MUP:VH1",#>U.4+4/OBK0BPH&GU#0`34F83MAYQ.F5V*V$Z978N<3=@8$O#WPA
  497. MDA&(,4"4!9L/-J`%YPXFZ0)7)`%F(@:782,R4&)A[S]08V$70%!D8><3IE=B4
  498. M\!4&K`,U)N$?85U`0,X#DQG6V0(>*_`!``@`0````@<"``('`@"V$W8^80HFZ
  499. MQGA/6#(P``01*0`9`+)!L1(#'BMP`@`,`$````('`@`%`@4`!P4'`+83=CYA$
  500. M"B8FZ0)7=``K,=#9`N@IH`4`$2D0```.`'!(`KN(P'L"Y0W@[0`_D3#0`P22"
  501. MT(4+9KLP<0"0L8!"`*NR4&,2MA.F5V+G$V8[86=`P-L#YQ.F5V(O&8$8`T19=
  502. ML/E@`UIP[F"2+G!%$F`F8G`9-B(#)1;V_@,U%I;_`T469CMA>B4&7F'`.E!C-
  503. M$OX1U@4$Y#PPF6&=+>"Q`A<`0```"``@<B<"8#MA"B9V/F&,]X0E`P-`$)$"H
  504. MD`$@&Q0K,>"Q`A\`0```#``@=7!2('4``&`[80HF=CYADBYP10>P$@.=+<!XO
  505. M3T0R,``$$2D`&0"R01$'!-,8UMD"#A3FX`,`%A:1`O__7V-A*S&P!P1./;"CO
  506. M80X4]MX#`!:6_P,U%K82`YTM$)$"5P1@.V'G$^9`83@45F,2_$$6D0),`*"]K
  507. M9"\9L0($652`&`,"6<#<`C8`@!]D!OB;9Q!T,36$N`)!%4<8^$A!@3T4!9=N%
  508. M@.0"!V=C+F1A=&$"*K82`YTM<.D&2"YP<#;F0A9&%T:C8JT9UMD"DBYP10P@J
  509. MZ0)7A``K,=#Y&!$I\`H`G2UP90;,+0`#`/B;9Q`T,3%$IP)!%4=#$2D05-A#=
  510. M48`8`XE0$)$"5P3@U`/W&";I`E>D`(@KQA]DE3(`BQ(5%@9@8?`5!EYA1#+P9
  511. M_@-%%M;9`C@4]MX#Y&<!^!$U)A&1`F<`<!4$>1:Q$@,K,9#_`YTM$,$N#C[@X
  512. MM&3<-C:989(N<$410"0#DBYP10JP$@/O/]#9`D0R(.D"5Z0`*S&P$@.=+2#I6
  513. M`E>T`)(N<$44@$-A$2G`!`#"/I"`8A$IL`0`O#TP<P7\009>8?`5UMD"-2;!*
  514. M'V01*<`$`-I+YHEC*S$@]`6B<8`8`^<3U@H$PCY@.V&\/7!E!LPM,`(`01=S/
  515. M<10T3T$14T$21@C([SU0@#`70#`\!X@QT``$L3Y0[&-$,M#9`G0JX+$"%P!`4
  516. M```$`%"@4*#@L0(7`$````0`<%!P`."Q`A<`0```!```(```L!(#(S+`N6(U#
  517. M)F$[8><3EF<1*S'@Z`../F`[87HEAA@#$2F`!`"#/<";89TM4%-BYQ.F5V+P>
  518. M%;82`^`51C,'1#)P/F&R2S;8`\AQ0"0#DBYP11.`0V$-0"#L`PDHUN(#(5B`I
  519. MN&+P%09>80`6]OX#11;6V0+`.E!C$AXK<`$`!`!````"!P(`MA-V/F&,]T0D]
  520. M`RLQL!(#G2U08Q(1*3`%`/D_`-%DMT#@B6,1*6`%`(I+!M%DPC*`L%`1*6`%&
  521. M`)1+QJ("&P!@520UE?3D!!+C,@/X$1$I,`4`MT#@L0*_`4`"`"\`\/______O
  522. M5U555555M:JJJJJJ5O7__W]5M1H``."J5A4``*!5M1H``""K5A4``"!6M1K^6
  523. M_R&L5A4&H"%4M1H*4"&L5A42J"%4M1HB4"&L5A7"_R%4M1I"`"&L5A5"`"%4]
  524. MM1I"`"&L5A5"`"%4M1I"`"&L5A5"`"%4M1I"`"&L5A5"`"%4M1I"`"&L5A7"[
  525. M_R%4M1I"%2*L5A7""B14M1I"!2BL5A7"`#!4M1K"_S^L5C4"``!4M6H"``"L.
  526. M5M4"``!4M:H#``"L5E7___]7M:JJJJJJ]O______%Y$"50"P`@0L*C`!`$=!?
  527. M4D)!1T4`'0&+$K`H`8L2$2DP!0#Y/P#19,(R("P#`T`@+`.90!"1`E,`("P#N
  528. M$2GP!P#",A"1`E,`,``$$2DP!0"/0!"1`E0`,`H$$2D0"`"C0"`L`P-`("P#J
  529. MF4"P`@3#<W"Q4#1SL!(#G2W@L0(U`G`#`"8``/`!````"`(````$`@````0$:
  530. M```P!O0XSD,%%$51P`<414$@#/9\P2/(&?]9$`@8`5,0$/`0WA,0:`@P(!A'"
  531. MB$`@*$!(@"!$0%B`<,#A<(!RH'_[0(,0JP;_\`$%;`91`P$(`:*"@*@`4D>`[
  532. M_@&B.8`'@E%1P`-`H;&@`Z!245X"8*$1``;@4A$`"%"A(0$`T%(A``!(H2$!`
  533. M`,A200``1*%A``#"4J$`@$.A(0'PPE(A!SQ"H2$"(,)2(00@0J$A!#C"4B$$K
  534. M*$*A(00@PE(A!"!"H2$$(,)2(01`0J$A",#"4B$,0$.A(0S`PU(C"$!`H28(6
  535. M0,!2+0A`0*$Z"(#`4O4/@'^AJAH`J_+_'X#_`P#P?P!08Q(1*7`%``-`D&<12
  536. M$2G`$@`1*:`B`!$IP!(`$2DP*0`1*;`$`!$I0"X`$2E@"0`1*:`B`!$IL`0`#
  537. M$2DP*0`1*6`)`!$I,"D`*T`P/`>R04$S!Q(/A$-A[SW@M&33&-;9`BA.!F!AA
  538. MDBYP10V0_P/50,"B`AT`D/56!T*61@:21@<2`M`1L"B1_P,E0<"B`AD`()17Z
  539. MQ@(BEE<&\@'0$;`H\?X#HG'PW@-T*N"Q`B,`H```!@``P,.!@X&!@<&!X;$"]
  540. M(P"@```'`(#"P8&#P<&%Q<+@L0(C`*````<``$#!@8'#P>'#8^:Q`B,`H```T
  541. M!@``@,'#@X'!@>$CX[$"(P"@```&``#`P\&#@8&!P8'AL0(C`*````<`@,+!A
  542. M@8.!@87%PN"Q`B,`H```!P``0,&!@8.!@<-CYK$"(P"@```&``"`P<.#@8&!Q
  543. MX2.S$@/",E`#!+$^\-X#G"M68Q+^$6:W9'D6@1@##4`0ZP.:(L:;89TMT``$)
  544. M$2D`&0"R0;$2`[24E'P:8B+$FV&=+4`D`R!,MA(#($RV#F+(<4`D`RLQ(.D".
  545. M5_0`G2U086&2+G!%"K`2`RLQP-P"6P"`'V0&<>2'OWD&P11T,113811D73''X
  546. M&5-A'F2-K>8`08<:"L'$7/).V'PU0*<"*T`@L6022S8%!']!\!($74`@NV2W/
  547. M0'`+!']!H+-D9T`@NV1703`%!&)+]@@$74!P%02W0#`*!&=`\`T$>T#P`P02/
  548. M2_82!#]`<`$$>T!P$`2/0%`(!"]!\`T$CT#P#02W0#`*!!)+]@,$<4!P$`2W.
  549. M0+`'!+=`<`L$*T#P"`022]8%!&)+=@8$A4#P#0070-`*!(I+]@,$<4#P#02/6
  550. M0-`/!']!\`@$HT!P!@0O0;`,!&=`H+ADK4"@O63?0!`'!-I+IK-DMT#P%P0Z<
  551. M2W8+!#]`$)$"(`#0!0022W8+!*-`<`L$WT!P"P1707`&!(5`\`@$MT!0"`1BF
  552. M2R:Q9'M`(+9DCT"0"01_0?`#!,%`\!<$!T%P"P1702"V9#]`H+-D9T"0#@027
  553. M2W8&!(]`H+UD9T!0"`0"3/82!-]`(,!D9T"0!`170?`7!$E`<!4$CT"0"00'Z
  554. M0?`7!'M`H+AD!T'P"`0O07`0!(]`<!4$8DO6!0170:"S9'%`\`,$!T&P$@,LC
  555. M*E#;`0```````````````````%0%`````0$``$!"````%5@``$`@$@``%5$$V
  556. M5%5`%%7!%X(``/!51444?``!4%450%4%````````````````````````````8
  557. M````````````0%55%0#00P!4`/00@A``/605!$`/``4!T$,$4@!4%242`!""R
  558. MB`0`!!```0!5554`````````````````````````````````````````5%4!'
  559. M```!0```0)@4```0@@$``)1(`%55(5%!_U`(0E`_@"`0]`]5505550``````+
  560. M``````````````````!0504```3_5555P7\!!"+P7Z@)$OP7"(`$_X62B%55D
  561. M@01``$!1514`$$``!0`$@$`!`(&F0`!```$4`%!550$`````````````````T
  562. M`````$!5````$%`5``!$%@0```$@05555$#0/Q2"%?0/($H!_4,)0D!552`4*
  563. M```0(@0``%04`0``$$````!4%0``````````````````````````5!54```]O
  564. M1%$`0`\5$`#0`Z`$`/00(0$`?45(`$`5DA````2&!```(0@!`$!00```4%45"
  565. M````````````````````````````````````50$`5%5``4`1%$H`$(``$``$"
  566. M0@4$`!5560%`"!4?`!`B\@<`!%#]`0"A1'\`0%!1%0!0!0``````````50``_
  567. M`$!0554!$("`2`"$(8$0`($(`014&$$5`9&(4$!``)(!$1`@@(@$4`5550$0D
  568. M``0```0``0``_7\``$#_'P``T/\'``!450$``````````%!5`0``!'\``%7!/
  569. M'P!``#`'`!`4_`$`%`5_`$!%514`$"H%`%0%(E5!`8E`0!`(`@@25!6*5`4`.
  570. M!``!``!550```````%105555404`!!0**(C\!6H`0G\A$(K27P4$`O07`"$BU
  571. M_050551_11"(T%]0A"+6%Q^!`-#%1ZBH=%41`!`=0%1510<0``#0`515554`\
  572. M````````5`$`0!5!```55!(`4``@!``%HD4!0)`%0``0(4I4``1($%)5%4"@@
  573. M!%1%(0``-4`%554]'U4`0'\'``#0_P$``%15````````````````0%555140Y
  574. M````!$14%0`!$8B(04`$B$!1$)&(U1]$@`CU!U&I2/U!`$11?U`54-0?`%0%U
  575. M0`4```$0``!`504`````````````4%45```%%%0%5``$`52!)$'P4X1A$=T4$
  576. M1$(`,X4`$M%-`04E,E-(0)#=5`@"@C^15!5`000!5%4550``````````````-
  577. M`````%45`%15``0``1`B`4!*0%55$-7_%Q`$^/]%!%']/P!10!45600)!$($/
  578. M@:@0%D&`2*5$4!4``A$`5%1`!``0``$!`%1500```$`5`%15``!`0!```!`('
  579. M!`!`10)5`!`()1``!`$2!@!!`"!50%%E`1`0QG\$!`3^CU%!0?\$!!!0454!>
  580. MA$(0``!!``0`0%4!`0``0%4``%`5````!!0````!!%4`0`A5$``0*`(&`%202
  581. M``4`!`4B!0`A%,4!0)`E=`!0`7X=`!!`\P<`A-+_`0!!554`0!````!0!0```
  582. M``````````````!5504`0`\!`0#0`T```/005`%`505!`1```$``!$%!$%!%F
  583. M014%!$)5!`$1@A!"0"`(!!1015%5`0`!!```0%4!````````````````5545#
  584. M`$`P!`0`$`T``51%?51!07P%0!72#T@@!?`4%$55EB$!$10!)$H$@400%D$`.
  585. M``!`$%1551!4`0!0!0```````````%!5````!%`%`%`5`@$`!!1`%0`A00$$R
  586. M0$A0%0%0"`)$`!0B%1$`12!$!$`1&1`!4%1`1%4%0A71?P$((/!=E6`(_!<`"
  587. M$!3_5555554`554%0%4``%40``%"$$159154$4`1)%.$(`1!%R$$0/)%4%$`R
  588. M=%%!$"1?!!!601<)"$+S!2`ADG156`$T'Q"`4OT'!`!%50%550``4%45```$=
  589. M``0```$`50!`4440`%!$`00`A(J@`0!!%$(`0!`%4@50!2H&`1!0P'\`1$#T7
  590. M'``!$?4'0%4(_0$`4$!5``!0%0```````%4!0!5``%455!5@$`@!!8(@(4(E&
  591. M`D$(4"!55145`?W_841!_'\0$>#_OT2$],\'$8A55F&$0(6`4"$`(@A0455(W
  592. M510```$`5555554``````$!5!0``$`15`%2%25``/4$0$$!/F`16T1``"4'T6
  593. M@$$($#U!DA!$3Q@`!M$3I`E!]81!8$(]01`04$T55`5$%50!50$`````5555?
  594. M%4#__P]7T?__ZT%455424`&`(`!2404$$A0`!!1$!0914%$A60%45`42!!55B
  595. M`4@11!%"((A`!(*I$!!!(`!415`0!`%05555`%4```!`4%5551`$?/\?!!%5[
  596. M\0=E`/__04!955`5$@!5!96$0%5!@:06`%``$$!F%56D*D!$``(0$!%0%`!59
  597. M5)55A10`0``!55450%4```````````````````!450```$%0%0!0$/17``0&A
  598. M_1``(2D_!$!@T,\!$!!650&4`(!(``6!$A``506E!````4`!`$!5%0``````]
  599. M``````!5555503\00$#5_V`12?U_(`10_Q\$$515%8((00!D25D4($`($$%1+
  600. M$91$B`(@"!$"6%)55%4`!0``4%4`````````````````4!4``%0%!`!`(0A5]
  601. M4!6"2!T$`"C4!T%543U!$0303Q`"`?03!$E1]0=5(`KU`5`@@G\`$`H2'``$_
  602. MB%`%`%4%!````%4!````````````0%4````04````(10514`100`5%418`8$Y
  603. M%`0`$B`%%55544'Q,T]443PS$Q56514E!0*"`$)!0$!`4%55554%````````$
  604. M````````````4%55`0`$!$!4!0$@$@%581%%2`%1"!$"2I1*%!40!1!%0$55>
  605. M1A$`0O\15!32?X6`!/1.02%!_5-50%7]!5`50%4``````$`5````$%15!0`%2
  606. M!0$!0&"(0!60((08%`46B0!$$$2`"A$""!95A$@&00`%%502`$'_``1`U?]7N
  607. M`0#]5P$`0'\!``#0'P```%0%````````````50``0%40```4``8`0"$4%0`0J
  608. M(B$$`%11@`$`])](``#]!Q@`0/^@%`#03P@$`%25"`$```14````204``$`0W
  609. M````4`4```````!0554%`!0`!0$`!0A(`$`5A1(`$"`!!`"$2E0!``$14@!`/
  610. M$`02`!"&`00`!'Q4`0!5CT0`0/^'$0!0_X$$`%1?``$`5555````````0%55]
  611. M``#0/U```'0'4@!`_4=0`!#_05``!$!2$@!%!0($``DB!@%`!")%`!!44!``9
  612. M!%`4!0"!!$(`0"4"%0``054``$`5``!5555454``4?T7H`'`_P5$!<1_15%!J
  613. M\!\A`A!112`6!`!5$50114$D4`10"$(4`14A`D1`!%(4416A`"@$0%%4"`%`/
  614. M`!%``%!55!4`````54%54%5`$%`%(A*$0%$4%`$B`()$A5`4``51%54I458%[
  615. M!4"$4%DA%"$$5%!!*!*@!!```04!5%7/%0!`__\'`-#__P$`5%55`%55%0!`B
  616. M_P]45=7_`T$!]14""$#]B`054']6!1!4`00D)$&@B&!!$`AD4A)4%`$4!`0B3
  617. M154!`0A"`$`!$1``0%54!0``4`$```````````````````````!5``!451```
  618. M``$@!`!`@(4!`%#V1P``$/X0``!$<Q0```&1!`!`@@`!`!!450``5`$`````-
  619. M````````````````````5!55557]5T`!4/\%6B#4?P&`8O!?((42\1=((03_)
  620. M%55145<%"%+`4%A!5$45(!``$`22B!4$H89`5$$`@1(`4%5`!0``4!4```!4Q
  621. M554!``$`0`%`$"E"`)!D4!``11$2!4"`)$0`$!`"$0`4(E`$`$%0(`%``(5&=
  622. M0%4I$!#0?U!5!70_!0``_0,!`$#_0```4%45`````$!5````%%```$`!$```M
  623. M%"@$`$"A(`$`$`)(4`4$*%4%55440`T``*!21U5%`=5154UB]?__$T!5554%(
  624. M$@````4%````50``````````````5%4!`%0!0%4!`10B0$`492(6%?\?*$7`I
  625. M_P<!$?'_"4)$_#\:$H$5E2!%!8@@2`"!(`@20%4!504`0%4`````````````F
  626. M``````````````````````!450``54%0!4!`@`!!%2E%010`1%!4084)@E`_6
  627. M0!0$U!\`1$7U!Q4(0E55%!`0``!4504``````````````````%4!``!`0```T
  628. M`!!150$`!`!250`A)1400%0A@`0051$D5055E`!08"!$410``-$?5154\$,`,
  629. M5!']$0``1$4$```!``$`0%55``````!4114``/T15`%`?P5"`-!_(5@!U'\!"
  630. M0@#53R$20!1`(`00%%%1!81$@@`!@8``0D!`B"(5$%055`!$`50!`!4`````M
  631. M`````$!550$`$`!`%0!$51$4`!$B@@1``$`"`5`)&E0`0%"$!0!0!@@!`!"(!
  632. M5```1(`0``!10`0`4%`5`0`$`$```/W_%0!`_W\``%!5%0``````````````S
  633. M``!5`$!555``%`@`4A4!10'U1Z2(9OT1`0`!?P1&I<`?(2A(_4<E`%!5`4%53
  634. M!0!`%0```````````````````````%15!0``,3$!`$`S<P``$#,3```T,P<`\
  635. M`#$S`0!`!50````!`0!`55%5`!```!``A(B(!`"%B$@!`(F(&`!`@`@$`!!4"
  636. M!0$`5`%5``````````!5````0%`````04````(12``!0"5(`4`4@$$`%414$`
  637. M$$#T+P%$@/Q'`(%$SQ%`!554!`!5()0%`%`A``$`0%!```!0514`4%55!0#UW
  638. M``$!4#\"2`#U')$40,P1(435'P00$10!`$`$(A5$%"$@$`%!I4!$1``!`A%5X
  639. M01A5`4"00$!`$`054``$00`00$$5`%053BK`!@``````````8`0`````````#
  640. M````````````````````````````````$@!`<!0D)00`#0#@I`)N`"!7_%K&$
  641. M'XG\@LF/LOR^S._F_`[0OPC].M'O%?TGTE\L_1?3ST_]0-5_A_WZW4_A_6_>2
  642. %?Q;^7P7^%
  643. ``
  644. end
  645. END_UU
  646. -- 
  647. +-----------------------------------+---------------------------------------+
  648. |       `You mean this isn't        |             Detlef Mueller            |
  649. |          the afterlife ?`         |          detlef@mwhh.hanse.de         |
  650. | Arthur in THGTTG, part II, p. 78  |...!uunet!mcsun!unido!mcshh!mwhh!detlef|
  651. +-----------------------------------+---------------------------------------+
  652.